home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d6 / bartend.arc / DSK1.EXE / DEMO.BAT < prev    next >
DOS Batch File  |  1990-03-13  |  999b  |  51 lines

  1. @echo off
  2. echo off
  3. bar_out >NUL
  4. echo Select your printer type or emulation.
  5. choose PostScript - Epson - ProPrinter - HP Laser @150 dpi - HP Laser @300 dpi - Epson 24 pin - Toshiba 24 pin - Okidata MLine
  6. IF ERRORLEVEL 7 GOTO OKI
  7. IF ERRORLEVEL 6 GOTO TOS
  8. IF ERRORLEVEL 5 GOTO EP24
  9. IF ERRORLEVEL 4 GOTO HP300
  10. IF ERRORLEVEL 3 GOTO HP150
  11. IF ERRORLEVEL 2 GOTO PROP
  12. IF ERRORLEVEL 1 GOTO EPSON
  13. bar -p0 -t+ -c+
  14. GOTO DEMO_GO
  15. :OKI
  16. bar -p7 -t+ -c+
  17. GOTO DEMO_GO
  18. :TOS
  19. bar -p6 -t+ -c+
  20. GOTO DEMO_GO
  21. :EP24
  22. bar -p5 -t+ -c+
  23. GOTO DEMO_GO
  24. :HP300
  25. bar -p4 -t+ -c+
  26. GOTO DEMO_GO
  27. :HP150
  28. bar -p3 -t+ -c+
  29. GOTO DEMO_GO
  30. :PROP
  31. bar -p2 -t+ -c+
  32. GOTO DEMO_GO
  33. :EPSON
  34. bar -p1 -t+ -c+
  35. :DEMO_GO
  36. echo .
  37. echo Select your printer port (if in doubt, use LPT1).
  38. choose LPT1 - LPT2
  39. IF ERRORLEVEL 1 GOTO PORT2
  40. copy demo.dat LPT1
  41. GOTO END
  42. :PORT2
  43. copy demo.dat LPT2
  44. :END
  45. ECHO .
  46. ECHO Bar Tender demo finished.
  47. ECHO (C)opyright 1990 TVark Productions.
  48. ECHO Thank you for evaluating this product!
  49.  
  50.  
  51.